Merged
Conversation
Rendering of Description field was changed as some point and as of 3.0 version it uses haddock and trick with placing . strategically is no longer needed Fixes haskell#528
Contributor
Author
|
Unrelated to bug in question. MacOS13 image are no longer available. I dropped them from CI https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ |
lehins
approved these changes
Jan 6, 2026
Comment on lines
-43
to
-44
| - { cabal: "3.14", os: macOS-13, ghc: "8.10.7" } | ||
| - { cabal: "3.14", os: macOS-13, ghc: "9.0.2" } |
Contributor
There was a problem hiding this comment.
Instead of dropping them we should be able to switch to macOS-15-intel
Suggested change
| - { cabal: "3.14", os: macOS-13, ghc: "8.10.7" } | |
| - { cabal: "3.14", os: macOS-13, ghc: "9.0.2" } | |
| - { cabal: "3.14", os: macOS-15-intel, ghc: "8.10.7" } | |
| - { cabal: "3.14", os: macOS-15-intel, ghc: "9.0.2" } |
f3d830c to
cad774f
Compare
Contributor
Author
|
Yes But there're weird new CI failures:
I'll try to figure this out tomorrow |
Contributor
Yes, this is because GHC 9.0.2 changed the ABI (see https://gitlab.haskell.org/ghc/ghc/-/issues/21423). I recently had the same issue and clearing the cache fixed it. |
* MacOS 13 imsage are not longer available https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ So switch to macOS-15-intel * Bust CI cache. There are some problems with GHC-9.0. Something happened and linker fails with weird errors.
aaa3257 to
fbd00da
Compare
Contributor
Author
|
That was cache problem |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rendering of Description field was changed as some point and as of 3.0 version it uses haddock and trick with placing . strategically is no longer needed
I've checked haddock's output.
index.htmlis now generated properlyFixes #528